-
-
Notifications
You must be signed in to change notification settings - Fork 839
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.25.0 #2801
Version 0.25.0 #2801
Conversation
Okay, let's...
|
Co-authored-by: Kar Petrosyan <[email protected]>
does this mean to simply copy changelog of this version as PR description?
Not sure you are asking me or the maintainers, I have no opinion on this. |
Can we assume that the current version of httpcore is the last one that we will be able to support in this release? Because httpcore changed the response.extensions type in encode/httpcore#762 I'm guessing we'll have type issues with the next httpcore release. |
Yep.
For the 0.x series we're using median point bumps for releases that include API changes. We've only got additions and fixes here, so we probably want a |
I'm... not sure if the You could issue a draft PR where
|
I'll update the version number according your discussion and decision 🙂 |
I think if we want to include #2794, we should create a |
Indeed, yep. I think the TODO list here looks like this(?)...
|
This doesn't need to be in todo list I think, we can drop them later |
Now we removed python3.7 support, I think it's definitely |
@tomchristie now todo list is empty |
0.25.0 (11th Sep, 2023)
Removed
Added
Extensions
fromMapping[Str, Any]
toMutableMapping[Str, Any]
. (Change the type ofExtensions
fromMapping
toMutableMapping
. #2803)socket_options
argument tohttpx.HTTPTransport
andhttpx.AsyncHTTPTransport
classes. (Addsocket_options
argument tohttpx.HTTPTransport
class #2716)Response.raise_for_status()
method now returns the response instance. For example:data = httpx.get('...').raise_for_status().json()
. (Makeraise_for_status
chainable #2776)Fixed
500
error response instead of exceptions whenraise_app_exceptions=False
is set onASGITransport
. (Fix exception suppression in asgi transport #2669)WSGITransport
environs have aSERVER_PROTOCOL
. (Ensure all WSGITransport environs have a SERVER_PROTOCOL #2708)%2F
in query parameters (Always encode forward slashes as%2F
in query parameters #2723)httpstatuses.com
for HTTP error reference (Use Mozilla documentation instead ofhttpstatuses.com
for HTTP error reference #2768)